home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 101 / CD-ROM 101.iso / compl / maya5ple / Install_MayaPLE5_English.exe / Maya / Data1.cab / fileListViewer.mel < prev    next >
Encoding:
Text File  |  2003-07-17  |  2.9 KB  |  109 lines

  1. // Copyright (C) 1997-2002 Alias|Wavefront,
  2. // a division of Silicon Graphics Limited.
  3. //
  4. // The information in this file is provided for the exclusive use of the
  5. // licensees of Alias|Wavefront.  Such users have the right to use, modify,
  6. // and incorporate this code into other products for purposes authorized
  7. // by the Alias|Wavefront license agreement, without fee.
  8. //
  9. // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  10. // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  11. // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  12. // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  13. // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  14. // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15. // PERFORMANCE OF THIS SOFTWARE.
  16. //
  17. //
  18. //  Alias|Wavefront Script File
  19. //  MODIFY THIS AT YOUR OWN RISK
  20. //
  21. //  Creation Date:  2 October 1996
  22. //  Author:         Dan Whiteley
  23. //
  24. //  Description:
  25. //      Creates a window that displays the file references.
  26. //
  27. //    WARNING: All of the procedures in this file are obsolete as of Maya 2.0
  28. //
  29.  
  30. //
  31. // Callback functions.
  32. //
  33.  
  34. global proc refreshViewCallback ()
  35. {
  36.     obsoleteProc("refreshViewCallback", "fileListViewer.mel");
  37. }
  38.  
  39. global proc fileSelected ()
  40. {
  41.     obsoleteProc("fileSelected", "fileListViewer.mel");
  42. }
  43.  
  44. global proc activateCallback ()
  45. {
  46.     obsoleteProc("activateCallback", "fileListViewer.mel");
  47. }
  48.  
  49. global proc deactivateCallback ()
  50. //
  51. //    Deactivate the currently selected file.
  52. //    Since 1 file must always be active, then make the root file active.
  53. //
  54. {
  55.     obsoleteProc("deactivateCallback", "fileListViewer.mel");
  56. }
  57.  
  58. global proc selectCallback ()
  59. {
  60.     obsoleteProc("selectCallback", "fileListViewer.mel");
  61. }
  62.  
  63. global proc moveToCallback ()
  64. {
  65.     obsoleteProc("moveToCallback", "fileListViewer.mel");
  66. }
  67.  
  68. global proc removeCallback ()
  69. {
  70.     obsoleteProc("removeCallback", "fileListViewer.mel");
  71. }
  72.  
  73. global proc createReference ( )
  74. {
  75.     obsoleteProc("createReference", "fileListViewer.mel");
  76. }
  77.  
  78. global proc importReference ( )
  79. {
  80.     obsoleteProc("importReference", "fileListViewer.mel");
  81. }
  82.  
  83. global proc int doExportAsReference ( string $theFile, string $fileType )
  84. //
  85. //    Description:
  86. //        This code is used to create a reference file from a
  87. //        selection in the current scene. 
  88. //
  89. //    Note:
  90. //        There is currently no options associated with this action so
  91. //        we must use the currently set Export Selected options. Note that
  92. //        we cannot ignore history during this operation. This case is
  93. //        handled in the export code.
  94. //
  95. {
  96.     obsoleteProc("doExportAsReference", "fileListViewer.mel");
  97.     return true;
  98. }
  99.  
  100. global proc exportAsReference ( )
  101. {
  102.     obsoleteProc("exportAsReference", "fileListViewer.mel");
  103. }
  104.  
  105. global proc fileListViewer ( )
  106. {
  107.     obsoleteProc("fileListViewer", "fileListViewer.mel");
  108. }
  109.